All Questions
Tagged with postgresqlobject-oriented
4 questions
6votes
1answer
319views
OOP Python Blackjack game with player accounts in PostgreSQL
This is an OOP version of Lastest version of my Blackjack game. Also, it now uses PostgreSQL as database. ...
6votes
4answers
442views
Using PostgreSQL effectively with a banking app
I'm kind of newbie for these things but I did something and I want to know how I can do this effectively. ...
1vote
1answer
756views
Adding new or existing tags to a blog post
I'm working on a simple blogsystem (for learning purposes, not to reinvent the wheel). In this system the user can add existing or new tags to a blogpost. I wrote a method to achieve this, but it's ...
6votes
1answer
2kviews
Generic method for database calls
Background Breaking from MVC, I've implemented the following architecture: POST/GET ➤ PHP ➤ Database Calls ➤ XML ➤ XSLT ➤ HTML All database interactions are ...